Micron Document
Fox's Git Mirrors

.github/actions/verify-workspace-clean/action.yml 633735d797cc5f5d48cb2e22e8fd7cd743930daf (633735d7) Text, 661 B

name: Verify workspace clean
description: Recheck byte-level tree inventory and report unexpected runner mutations (warn-only in CI)
runs:
using: composite
steps:
- name: Verify workspace clean
continue-on-error: true
shell: sh
env:
RNS_INVENTORY_OUT: ${{ runner.temp }}/reticulum-go-tree-inventory.txt
RNS_CLEAN_OPTIONAL: "1"
run: |
if [ ! -f "$RNS_INVENTORY_OUT" ]; then
echo "::warning::verify-workspace-clean: no tree inventory (tree RSM verify was skipped or optional and failed), continuing"
exit 0
fi
sh scripts/ci/verify-workspace-clean.sh "$RNS_INVENTORY_OUT"

Served by rngit 1.5.2 - Generated in 0.06s